home *** CD-ROM | disk | FTP | other *** search
- function warning(text, mode, dontShow, addSize)
- {
- var app = new ActiveXObject("FSI.FSIApplication");
- if (app.GetSystemVar(dontShow) == 'true')
- return true;
-
- args = new Array(text, mode, dontShow, addSize);
- return window.showModalDialog("../resources/warning.html", args,
- "status:no;help:no;border:thin;dialogWidth:300px;dialogHeight:150px;center:yes;scroll:no;");
- }
-
- function stopwarning(text, addSize)
- {
- var app = new ActiveXObject("FSI.FSIApplication");
- args = new Array(text, addSize);
- return window.showModalDialog("../resources/stopwarning.html", args,
- "status:no;help:no;border:thin;dialogWidth:300px;dialogHeight:150px;center:yes;scroll:no;");
- }
-
- function message(text, mode, dontShow, addSize)
- {
- var app = new ActiveXObject("FSI.FSIApplication");
- if (app.GetSystemVar(dontShow) == 'true')
- return true;
-
- args = new Array(text, mode, dontShow, addSize);
- window.showModalDialog("../resources/message.html", args,
- "status:no;help:no;border:thin;dialogWidth:300px;dialogHeight:150px;center:yes;scroll:no;");
- }
-
- function showwarning(text, mode, addSize)
- {
- args = new Array(text, mode, addSize);
- return window.showModalDialog("../resources/showwarning.html", args,
- "status:no;help:no;border:thin;dialogWidth:300px;dialogHeight:150px;center:yes;scroll:no;");
- }
-